home *** CD-ROM | disk | FTP | other *** search
Makefile | 1992-08-27 | 469 b | 19 lines |
- #
- # Makefile.raw -- raw makefile for sample libpq programs.
- #
- # In order to generate a makefile from this file, cd to the
- # newconf directory and type 'Make toptest'.
- #
- # $Header: /private/postgres/test/RCS/Makefile.raw,v 1.3 1992/07/15 05:13:42 mao Exp $
- #
-
- TESTLIBS= libpq.a
- CFLAGS = -I$(SD)/lib/H
-
- async1: async1.o
- $(CC) $(CFLAGS) -o async1 async1.o $(OD)/$(TESTLIBS) $(LIBS)
-
- iportal1: iportal1.o
- $(CC) $(CFLAGS) -o iportal1 iportal1.o $(OD)/$(TESTLIBS) $(LIBS)
-
-